* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    transition: all 1s;
}

body {
    background-color: rgb(246, 246, 246);
}

nav {
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 5;
    background-color: rgb(246, 246, 246);
}

.nav_header {
    width: 95%;
    height: 100px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .nav_header > div:nth-child(1) {
        font-size: 50px;
        line-height: 100px;
        width: 200px;
        text-align: center;
        margin-left: 20px;
    }
.logo {
    width: 100px;
    height: 100px;
    align-items: center;
}
    .nav_header > .nav_input {
        width: 400px;
        display: flex;
    }

        .nav_header > .nav_input > input {
            width: 240px;
            height: 25px;
            border: 1px solid black;
            padding: 10px;
            padding-left: 20px;
            border-radius: 100px;
            border-top-right-radius: 0px;
            border-bottom-right-radius: 0px;
            border: none;
        }

        .nav_header > .nav_input span:nth-child(2) {
            width: 160px;
            padding: 10px;
            box-sizing: border-box;
            margin-left: 2px;
            background-color: #fff;
            font-size: 12px;
            display: flex;
            align-items: center;
            color: rgb(159, 143, 142);
            cursor: pointer;
            position: relative;
        }

            .nav_header > .nav_input span:nth-child(2) > div {
                width: 90%;
                position: absolute;
                top: 40px;
                background-color: #fff;
                display: none;
            }

                .nav_header > .nav_input span:nth-child(2) > div > ul > li {
                    line-height: 30px;
                    border-bottom: 1px solid #ccc;
                    text-align: center;
                }

            .nav_header > .nav_input span:nth-child(2) img {
                width: 10px;
            }

        .nav_header > .nav_input span:nth-child(3) {
            width: 60px;
            margin-left: 2px;
            height: inherit;
            display: block;
            text-align: center;
            background-color: #fff;
            border-top-right-radius: 100px;
            border-bottom-right-radius: 100px;
            display: flex;
            align-items: center;
        }

        .nav_header > .nav_input span img {
            width: 20px;
            margin-left: 10px;
        }

.nav {
    width: 100%;
    height: 40px;
    background-color: rgb(29, 112, 186);
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_icon {
    height: 25px;
    width: 25px;
    background-size: cover;
    background-image: url(../image/bag.png);
    margin-right: 30px;
    position: relative;
}

    .nav_icon span {
        position: absolute;
        top: -2px;
        right: -8px;
        font-size: 8px;
        background-color: red;
        color: white;
        padding: 2px 5px;
        border-radius: 10px;
    }

.nav > ul {
    width: 80%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

    .nav > ul > li:nth-child(2) {
        position: relative;
    }

        .nav > ul > li:nth-child(2) > ul {
            width: inherit;
            background-color: rgb(29, 112, 186);
            position: absolute;
            top: 30px;
            /* height: 150px; */
            height: 0px;
            overflow: hidden;
            left: -6px;
            width: 800px;
        }

        .nav > ul > li:nth-child(2):hover ul {
            height: 150px;
            width: 800px;
            background-color: white;
        }

        .nav > ul > li:nth-child(2) > ul > li > a {
            color: rgb(29, 112, 186);
        }

        .nav > ul > li:nth-child(2) > ul > li {
            /* width: 100%; */
            float: left;
            padding: 5px 10px;
            line-height: 40px;
        }

    .nav > ul > li:last-child > a {
        color: white;
        margin-left: 20px;
    }

.nav ul > li > a {
    color: white;
    font-size: 14px;
}

.nav_header .nav_icon {
    display: none;
}

nav .nav_menu {
    display: none;
}

section {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: white;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.s_left {
    width: 25%;
    padding: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.s_leftop {
    margin-bottom: 10px;
}

    .s_leftop img {
        width: 20px;
        float: right;
    }

    .s_leftop > span {
        font-size: 24px;
        font-weight: 600;
    }

    .s_leftop > .s_leftop_box {
        width: 100%;
      /*  height: 80px;*/
/*        display: none;*/
        overflow: hidden;
        background-color: white;
    }

        .s_leftop > .s_leftop_box > span {
            display: block;
            margin-bottom: 10px;
        }

    .s_leftop > .s_leftwo_box {
        width: 100%;
        height: 120px;
      /*  display: none;*/
        overflow: hidden;
        background-color: white;
    }

        .s_leftop > .s_leftwo_box > span {
            display: block;
            margin-bottom: 10px;
        }

.s_leftcenter {
    width: 100%;
}

    .s_leftcenter span:nth-child(1) {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
        display: block;
    }

    .s_leftcenter .s_leftcenterbox {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

        .s_leftcenter .s_leftcenterbox > * {
            width: 90%;
            align-items: center;
            text-align: center;
            padding-top: 5px;
        }
/* .s_leftcenter .s_leftcenterbox >img {
            width: 84px;
        }*/
/*.s_leftcenter .s_leftcenterbox > div {*/
/* width: 60%;
            height: inherit;*/
/*}*/
/*
            .s_leftcenter .s_leftcenterbox > div > p:nth-child(1) {
                width: 100%;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .s_leftcenter .s_leftcenterbox > div > div:nth-child(2) {
                margin: 10px 0px;
            }

            .s_leftcenter .s_leftcenterbox > div > .rating-stars {
                display: flex;
                align-items: center;
            }

                .s_leftcenter .s_leftcenterbox > div > .rating-stars span:nth-child(1) {
                    margin-bottom: 0px;
                    margin-top: -5px
                }

                .s_leftcenter .s_leftcenterbox > div > .rating-stars span img {
                    width: 15px;
                }*/
.s_leftbottom {
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}


    .s_leftbottom > p {
        margin: 10px 0px;
        font-weight: 500;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .s_leftbottom > p:nth-child(2) {
            color: rgb(139, 138, 137);
        }

        .s_leftbottom > p a {
            color: rgb(59, 95, 143);
        }

.s_right {
    width: 72%;
    padding: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.listbox {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

    .listbox > div {
        width: 46%;
        margin-bottom: 10px;
        padding: 10px;
        box-sizing: border-box;
        position: relative;
    }

        .listbox > div > img {
            width: 80%;
            display: block;
            margin: 0px auto;
        }

.circlebox {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30px;
    right: 35px;
}

    .circlebox:nth-child(2) {
        right: 70px;
    }

    .circlebox img {
        width: 15px;
    }

.listbox > div > p {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 6px 0px;
}

    .listbox > div > p a {
        color: rgb(59, 95, 143);
    }

        .listbox > div > p a:hover {
            color: blue;
        }

.listbox > div > .rating-stars > span > img {
    width: 20px;
}

.rating-stars .startimg:hover,
.rating-stars .startimg.selected {
    content: url(../image/yellow.png);
}

.pagenum {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-top: 20px;
}

/*    .pagenum div {
        width: 30px;
        height: 30px;
        border: 1px solid #999;
        text-align: center;
        line-height: 30px;
        margin: 0px 10px;
    }*/
        .pagenum div.apage {
            width: 30px;
            height: 30px;
            border: 1px solid #999;
            text-align: center;
            line-height: 30px;
            margin: 0px 10px;
        }

        .pagenum div.cpage {
            width: 30px;
            height: 30px;
            border: 0px;
            text-align: center;
            line-height: 30px;
            margin: 0px 10px;
        }
/*        .pagenum div:nth-child(1) {
            border-color: black;
        }*/

footer {
    width: 100%;
    background-color: #fff;
    margin: 10px auto;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
}

    footer ul li a {
        color: gray;
    }

.kzq {
    display: none;
}

.listleftbox {
    display: none;
}

.rhead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    padding: 10px;
    box-sizing: border-box;
}

.successbox {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 160px;
    display: flex;
    align-items: center;
    margin: 0px auto;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(229, 239, 229);
    color: green;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
}

    .successbox img {
        width: 30px;
        border-radius: 100px;
        margin-right: 10px;
    }

.lisbtn img {
    width: 20px;
    height: 20px;
    float: right;
    padding-top: 15px;
    transition: .5s;
}

#non {
    display: none;
}

.pagenum1 > img {
    width: 100%;
    height: 200px;
}

.pagenum1 {
    flex-direction: column;
}

    .pagenum1 p {
        color: rgb(0, 0, 0, 0.6);
        padding: 10px 20px;
    }

.listbox div img {
    width: 100%;
}

.listbox > div {
    width: 50%;
}

.circlebox:nth-child(2) {
    top: 52px;
}

.circlebox:nth-child(3) {
    top: 52px;
}
.gocar {
    cursor: pointer;
}